home *** CD-ROM | disk | FTP | other *** search
-
- /* tupleobject.c */
- static void tupledealloc ( tupleobject *op );
- static int tupleprint ( tupleobject *op , FILE *fp , int flags );
- static object *tuplerepr ( tupleobject *v );
- static int tuplecompare ( tupleobject *v , tupleobject *w );
- static long tuplehash ( tupleobject *v );
- static int tuplelength ( tupleobject *a );
- static object *tupleitem ( tupleobject *a , int i );
- static object *tupleslice ( tupleobject *a , int ilow , int ihigh );
- static object *tupleconcat ( tupleobject *a , object *bb );
- static object *tuplerepeat ( tupleobject *a , int n );
-